home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / XML Utilities / Professional Programmer XSL IDE / Xselerator25.msi / Data.Cab / F28700_compose.xsl < prev    next >
Encoding:
Extensible Markup Language  |  2001-12-27  |  678 b   |  21 lines

  1. <xsl:stylesheet version="1.0" 
  2. xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  3. xmlns:msxsl="urn:schemas-microsoft-com:xslt">
  4.   
  5.   <xsl:template name="compose">
  6.     <xsl:param name="pFun1" select="/.."/>
  7.     <xsl:param name="pFun2" select="/.."/>
  8.     <xsl:param name="pArg1"/>
  9.     
  10.     <xsl:variable name="vrtfFun2">
  11.       <xsl:apply-templates select="$pFun2">
  12.         <xsl:with-param name="pArg1" select="$pArg1"/>
  13.       </xsl:apply-templates>
  14.     </xsl:variable>
  15.     
  16.     <xsl:apply-templates select="$pFun1">
  17.       <xsl:with-param name="pArg1" select="msxsl:node-set($vrtfFun2)/node()"/>
  18.     </xsl:apply-templates>
  19.     
  20.   </xsl:template>
  21. </xsl:stylesheet>